net/http.http2priorityNodeRFC7540.kids (field)

15 uses

	net/http (current package)
		h2_bundle.go#L11501: 	kids       *http2priorityNodeRFC7540 // start of the kids list
		h2_bundle.go#L11515: 			parent.kids = n.next
		h2_bundle.go#L11531: 		n.next = parent.kids
		h2_bundle.go#L11536: 		parent.kids = n
		h2_bundle.go#L11557: 	if n.kids == nil {
		h2_bundle.go#L11570: 	w := n.kids.weight
		h2_bundle.go#L11572: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L11579: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11590: 	for n.kids != nil {
		h2_bundle.go#L11591: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L11592: 		n.kids.setParent(nil)
		h2_bundle.go#L11598: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11767: 		k := parent.kids
		h2_bundle.go#L11843: 	for n.kids != nil {
		h2_bundle.go#L11844: 		n.kids.setParent(n.parent)